(function () {
	var pars = [0,'15','/foto2/371.gif','/foto2/43.gif','/foto2/B_Fly02.gif','/foto2/Bee34.gif','/foto2/january.gif','/foto2/february.gif','/foto2/march.gif','/foto2/april.gif','/foto2/may.gif','/foto2/june.gif','/foto2/july.gif','/foto2/august.gif','/foto2/september.gif','/foto2/october.gif','/foto2/november.gif','/foto2/december.gif','/foto2/december.gif','/foto2/Cloud.gif','/foto2/43.gif','/foto2/f13-1.gif','/foto2/Ins32.gif','/foto2/p3.gif','/foto2/garlic.jpg','/foto2/f22.gif','/foto2/sun_tu4a.gif','/foto2/potatos2.jpg','/foto2/Cloud.gif','/foto2/f29.gif','/foto2/baklagan2.gif','/foto2/Ins04.gif'];
	pars.shift();
	var timeDelay = pars.shift() * 1000;
	var chngpx = 'ChangingPixs' + Math.round(Math.random() * 10000);
	var preloadImage = new Array;
	for (var i = 0; i < pars.length; i++) {
		if (pars[i]) {
			var rdimg = new Image();
			rdimg.src = pars[i];
			preloadImage.push(rdimg);
		}
	}
	var PicCurrentNum = 0;
	var PicCurrent = new Image();
	PicCurrent.src = pars[PicCurrentNum];
	this['sld' + chngpx] = function () {
		PicCurrentNum++;
		if (PicCurrentNum == preloadImage.length) {
			PicCurrentNum = 0;
		}
		PicCurrent.src = preloadImage[PicCurrentNum].src;
		document[chngpx].src = PicCurrent.src;
	};
	if (pars[0]) {
		setInterval('sld' + chngpx + '()', timeDelay);
		document.write('<img alt="" id="' + chngpx + '" name="' + chngpx + '" src="' + pars[0] + '">');
	}
})();